1
Defining Linear Transformations
MATH004 Lesson 7
00:00
Linearity is the skeletal structure of vector spaces. A linear transformation is not just a function; it is a mapping $T$ between vector spaces that honors the fundamental operations of vector addition and scalar multiplication. Think of it as a "structural blueprint"—if you know how the transformation affects a basic set of vectors, you know how it affects the entire universe of those vectors.

The Two Pillars of Linearity

For a transformation $T$ to be considered linear, it must satisfy two strict algebraic conditions for all vectors $v, w$ and all scalars $c$:

  • Additivity: $T(v + w) = T(v) + T(w)$. The transformation of a sum is the sum of the transformations.
  • Homogeneity: $T(cv) = cT(v)$. Scaling the input scales the output by the exact same factor.
The Superposition Principle

Combining these rules gives us the most powerful identity in linear algebra:

$$T(c_1v_1 + \dots + c_nv_n) = c_1T(v_1) + \dots + c_nT(v_n)$$

This means that a linear transformation $T$ acts on a linear combination of vectors by distributing across the sum and pulling out the scalars.

The Zero Vector Constraint

A critical "litmus test" for linearity is the Origin Test. If a transformation is linear, it must map the zero vector to the zero vector:

$T(\mathbf{0}) = \mathbf{0}$

If a mapping shifts the origin (e.g., $T(v) = v + b$), it is an affine transformation, not a linear one. In the geometry of the plane, linear transformations keep the center fixed; they never "slide" the space.

Recognizing Non-Linearity

Linearity is incredibly fragile. If the rule governing $T$ involves any of the following, it is not linear:

  • Squares or higher powers (e.g., $v_1^2$)
  • Products of components (e.g., $v_1 v_2$)
  • Absolute values or norms (e.g., $||v||$)
  • Constant offsets (e.g., $v_1 + 1$)
🎯 Core Principle: Example Contrast
Consider a fixed vector $a = (1, 3, 4)$. The dot product $T(v) = a \cdot v$ is linear because it distributes over addition. However, the norm $T(v) = ||v||$ is not linear; it fails the triangle inequality ($||v+w|| \leq ||v||+||w||$ is not equality) and fails for negative scalars ($||-v|| = ||v|| \neq -||v||$).